Skip to content

[Docs Site] Bump the non-major group across 1 directory with 26 updates - #32673

Open
dependabot[bot] wants to merge 1 commit into
productionfrom
dependabot/npm_and_yarn/non-major-d5756795b5
Open

[Docs Site] Bump the non-major group across 1 directory with 26 updates#32673
dependabot[bot] wants to merge 1 commit into
productionfrom
dependabot/npm_and_yarn/non-major-d5756795b5

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 11, 2026

Copy link
Copy Markdown
Contributor

Bumps the non-major group with 26 updates in the / directory:

Package From To
@astrojs/cloudflare 14.1.7 14.2.0
@astrojs/markdown-remark 7.2.1 7.2.2
@astrojs/markdown-satteri 0.3.4 0.3.5
@astrojs/mdx 7.0.4 7.0.5
@astrojs/react 6.0.1 6.0.2
@base-ui/react 1.6.0 1.7.0
@cloudflare/vitest-pool-workers 0.18.8 0.21.0
@cloudflare/workers-types 5.20260727.1 5.20260810.1
@iconify-json/simple-icons 1.2.92 1.2.93
@iconify-json/vscode-icons 1.2.67 1.2.70
@marsidev/react-turnstile 1.5.4 1.5.5
@octokit/auth-app 8.2.0 8.3.0
@types/node 26.1.2 26.2.0
@typescript-eslint/parser 8.65.0 8.67.0
cidr-tools 12.1.2 12.1.3
globals 17.8.0 17.9.0
happy-dom 20.11.1 20.11.2
lint-staged 17.2.0 17.3.0
marked 18.0.7 18.0.9
mermaid 11.16.0 11.16.1
nanostores 1.4.1 1.4.2
node-html-parser 9.0.0 9.0.1
tsx 4.23.1 4.23.12
typescript-eslint 8.65.0 8.67.0
vite 8.1.5 8.2.1
wrangler 4.114.0 4.120.1

Updates @astrojs/cloudflare from 14.1.7 to 14.2.0

Release notes

Sourced from @​astrojs/cloudflare's releases.

@​astrojs/cloudflare@​14.2.0

Minor Changes

  • #16194 2a59663 Thanks @​Daedalus-Icarus! - Adds opt-in build-time image optimization for the cloudflare-binding image service.

    When enabled, the Cloudflare IMAGES binding transforms static images in the workerd prerender environment, and the optimized bytes are written directly to the output directory. If the binding fails, it falls back to Sharp.

    To opt in, use the compound configuration form:

    export default defineConfig({
      adapter: cloudflare({
        imageService: { build: 'cloudflare-binding', runtime: 'cloudflare-binding' },
      }),
    });

    The string shorthand imageService: 'cloudflare-binding' preserves the current runtime-only behavior and is unaffected.

  • #16871 90c98ae Thanks @​adamchal! - When session: false is set in astro.config, the adapter no longer auto-wires the Cloudflare KV session driver. Combined with the matching astro change, this lets the session runtime tree-shake out of the Worker bundle.

  • #17084 961bbe5 Thanks @​matthewp! - Supports Astro's experimental incremental static builds. When experimental.incrementalBuild is enabled, the adapter skips unchanged pages between builds.

Patch Changes

  • #17576 0a79753 Thanks @​alexanderniebuhr! - Fixes /_image returning 500 in dev mode when using imageService: 'custom'. Astro's default dev image endpoint imports vite and node:fs, which cannot be loaded inside workerd. The custom and fallback cases now use the generic fetch-based endpoint in dev, matching the other image service modes. A user-configured image.endpoint is left untouched.

    Additionally, a dev-time warning is now logged when imageService: 'custom' resolves to the Sharp service (including when no image.service is configured), since Sharp's native binding cannot run inside workerd in dev or production.

  • #17481 0c32649 Thanks @​ondraulehla! - Fixes a crash on /_image cache hits when the Cloudflare cache provider is enabled. Responses served from the Workers Cache API have immutable headers, and the request handler crashed with "Can't modify immutable headers" when applying its default Cloudflare-CDN-Cache-Control: no-store header to them. The handler now rebuilds the response with mutable headers when needed.

  • #17347 ce83c39 Thanks @​astrobot-houston! - Fixes imageService: 'compile' producing unoptimized images when prerenderEnvironment is set to 'node'

  • #17594 2b8915a Thanks @​astrobot-houston! - Fixes a type-checking error when using app.use(cf()) from @astrojs/cloudflare/hono in projects with wrangler types-generated ExecutionContext declarations

  • Updated dependencies []:

    • @​astrojs/underscore-redirects@​1.0.3
Changelog

Sourced from @​astrojs/cloudflare's changelog.

14.2.0

Minor Changes

  • #16194 2a59663 Thanks @​Daedalus-Icarus! - Adds opt-in build-time image optimization for the cloudflare-binding image service.

    When enabled, the Cloudflare IMAGES binding transforms static images in the workerd prerender environment, and the optimized bytes are written directly to the output directory. If the binding fails, it falls back to Sharp.

    To opt in, use the compound configuration form:

    export default defineConfig({
      adapter: cloudflare({
        imageService: { build: 'cloudflare-binding', runtime: 'cloudflare-binding' },
      }),
    });

    The string shorthand imageService: 'cloudflare-binding' preserves the current runtime-only behavior and is unaffected.

  • #16871 90c98ae Thanks @​adamchal! - When session: false is set in astro.config, the adapter no longer auto-wires the Cloudflare KV session driver. Combined with the matching astro change, this lets the session runtime tree-shake out of the Worker bundle.

  • #17084 961bbe5 Thanks @​matthewp! - Supports Astro's experimental incremental static builds. When experimental.incrementalBuild is enabled, the adapter skips unchanged pages between builds.

Patch Changes

  • #17576 0a79753 Thanks @​alexanderniebuhr! - Fixes /_image returning 500 in dev mode when using imageService: 'custom'. Astro's default dev image endpoint imports vite and node:fs, which cannot be loaded inside workerd. The custom and fallback cases now use the generic fetch-based endpoint in dev, matching the other image service modes. A user-configured image.endpoint is left untouched.

    Additionally, a dev-time warning is now logged when imageService: 'custom' resolves to the Sharp service (including when no image.service is configured), since Sharp's native binding cannot run inside workerd in dev or production.

  • #17481 0c32649 Thanks @​ondraulehla! - Fixes a crash on /_image cache hits when the Cloudflare cache provider is enabled. Responses served from the Workers Cache API have immutable headers, and the request handler crashed with "Can't modify immutable headers" when applying its default Cloudflare-CDN-Cache-Control: no-store header to them. The handler now rebuilds the response with mutable headers when needed.

  • #17347 ce83c39 Thanks @​astrobot-houston! - Fixes imageService: 'compile' producing unoptimized images when prerenderEnvironment is set to 'node'

  • #17594 2b8915a Thanks @​astrobot-houston! - Fixes a type-checking error when using app.use(cf()) from @astrojs/cloudflare/hono in projects with wrangler types-generated ExecutionContext declarations

  • Updated dependencies []:

    • @​astrojs/underscore-redirects@​1.0.3
Commits
  • 60e9432 [ci] release (#17558)
  • a2240c4 fix(test): provide experimental config in Cloudflare session-false test (#17606)
  • 961bbe5 Experimental incremental static builds (#17084)
  • 90c98ae feat(session): add session: false to opt out of session support (#16871)
  • 2b8915a fix(cloudflare): inline executionCtx type in HonoCloudflareContextLike to avo...
  • 0a79753 fix(cloudflare): use workerd-safe dev image endpoint for custom image service...
  • 2a59663 Add opt-in Cloudflare binding image optimization during build (#16194)
  • 0c32649 fix(cloudflare): don't mutate immutable headers on cached responses (#17481)
  • ce83c39 fix(@​astrojs/cloudflare): fix imageService: 'compile' silent noop with `pre...
  • See full diff in compare view

Updates @astrojs/markdown-remark from 7.2.1 to 7.2.2

Release notes

Sourced from @​astrojs/markdown-remark's releases.

@​astrojs/markdown-remark@​7.2.2

Patch Changes

  • Updated dependencies [c895b12]:
    • @​astrojs/internal-helpers@​0.10.2
Changelog

Sourced from @​astrojs/markdown-remark's changelog.

7.2.2

Patch Changes

  • Updated dependencies [c895b12]:
    • @​astrojs/internal-helpers@​0.10.2
Commits

Updates @astrojs/markdown-satteri from 0.3.4 to 0.3.5

Release notes

Sourced from @​astrojs/markdown-satteri's releases.

@​astrojs/markdown-satteri@​0.3.5

Patch Changes

  • Updated dependencies [c895b12]:
    • @​astrojs/internal-helpers@​0.10.2
Changelog

Sourced from @​astrojs/markdown-satteri's changelog.

0.3.5

Patch Changes

  • Updated dependencies [c895b12]:
    • @​astrojs/internal-helpers@​0.10.2
Commits

Updates @astrojs/mdx from 7.0.4 to 7.0.5

Release notes

Sourced from @​astrojs/mdx's releases.

@​astrojs/mdx@​7.0.5

Patch Changes

  • Updated dependencies [c895b12]:
    • @​astrojs/internal-helpers@​0.10.2
    • @​astrojs/markdown-remark@​7.2.2
Changelog

Sourced from @​astrojs/mdx's changelog.

7.0.5

Patch Changes

  • Updated dependencies [c895b12]:
    • @​astrojs/internal-helpers@​0.10.2
    • @​astrojs/markdown-remark@​7.2.2
Commits

Updates @astrojs/react from 6.0.1 to 6.0.2

Release notes

Sourced from @​astrojs/react's releases.

@​astrojs/react@​6.0.2

Patch Changes

  • Updated dependencies [c895b12]:
    • @​astrojs/internal-helpers@​0.10.2
Changelog

Sourced from @​astrojs/react's changelog.

6.0.2

Patch Changes

  • Updated dependencies [c895b12]:
    • @​astrojs/internal-helpers@​0.10.2
Commits

Updates @base-ui/react from 1.6.0 to 1.7.0

Release notes

Sourced from @​base-ui/react's releases.

v1.7.0

General changes

Accordion

Alert Dialog

  • Prevent <AlertDialog.Root> from reopening after remounting with a reused handle (#5109) by @​michaldudak

Autocomplete

Avatar

Button

Checkbox

... (truncated)

Changelog

Sourced from @​base-ui/react's changelog.

v1.7.0

Aug 4, 2026

General changes

Accordion

Alert Dialog

  • Prevent <AlertDialog.Root> from reopening after remounting with a reused handle (#5109) by @​michaldudak

Autocomplete

Avatar

Button

... (truncated)

Commits
  • 254f474 [release] v1.7.0 (#5404)
  • 9222cda [meter] Format clamped values (#5409)
  • becc19a [combobox][autocomplete][select] Fix listbox separator semantics (#5399)
  • 7cc0eef [drawer] Fix click-only outside dismissal after swipe (#5392)
  • 1a2ca3c [all components] Fix canceled exit unmount (#5401)
  • 166e8ac [popups] Fix quadratic dev-mode trigger registration check (#5400)
  • 071e892 [all components] Avoid unused popup handle attachments (#5394)
  • cbc87d1 [select] Stabilize scroll arrow cleanup test (#5402)
  • 3b5715c [all components] Fix popup handle lifecycle regressions (#5387)
  • 54cfcc1 [typescript] Preserve published internals types (#5386)
  • Additional commits viewable in compare view

Updates @cloudflare/vitest-pool-workers from 0.18.8 to 0.21.0

Release notes

Sourced from @​cloudflare/vitest-pool-workers's releases.

@​cloudflare/vitest-pool-workers@​0.21.0

Minor Changes

  • #14994 2194f88 Thanks @​emily-shen! - Update the Workers Vitest pool for Miniflare's config-based options

    The Workers Vitest pool now converts the Miniflare options it creates for test sessions to Miniflare's config-based workers shape.

    For the most part, users should not expect to notice any changes.

However, auxiliary workers declared in miniflare.workers that rely on relative local imports now need those imported modules to be declared explicitly in the migrated module manifest.

Patch Changes

@​cloudflare/vitest-pool-workers@​0.20.3

Patch Changes

@​cloudflare/vitest-pool-workers@​0.20.2

Patch Changes

@​cloudflare/vitest-pool-workers@​0.20.1

Patch Changes

@​cloudflare/vitest-pool-workers@​0.20.0

Minor Changes

  • #14586 5a56dda Thanks @​emily-shen! - Breaking change: Remove several options from the miniflare override options

    The following options have been removed from the miniflare override options, as they were not intended to be exposed, were not functional, or have been superseded by other options:

    • wrappedBindings
    • cacheWarnUsage
    • fetchMock: you should use outboundService instead
    • containerEngine: containers were not supported in vitest-pool-workers. Consider using createTestHarness() instead if you want to test against actual containers.

... (truncated)

Changelog

Sourced from @​cloudflare/vitest-pool-workers's changelog.

0.21.0

Minor Changes

  • #14994 2194f88 Thanks @​emily-shen! - Update the Workers Vitest pool for Miniflare's config-based options

    The Workers Vitest pool now converts the Miniflare options it creates for test sessions to Miniflare's config-based workers shape.

    For the most part, users should not expect to notice any changes.

    However, while miniflare.modulesRules is preserved for common text and WASM fixture imports, it is not a full replacement for Miniflare's old modules: true module graph collection and you may notice some differences in behaviour.

Patch Changes

0.20.3

Patch Changes

0.20.2

Patch Changes

0.20.1

Patch Changes

0.20.0

Minor Changes

  • #14586 5a56dda Thanks @​emily-shen! - Breaking change: Remove several options from the miniflare override options

    The following options have been removed from the miniflare override options, as they were not intended to be exposed, were not functional, or have been superseded by other options:

... (truncated)

Commits

Updates @cloudflare/workers-types from 5.20260727.1 to 5.20260810.1

Commits

Updates @iconify-json/simple-icons from 1.2.92 to 1.2.93

Commits

Updates @iconify-json/vscode-icons from 1.2.67 to 1.2.70

Commits

Updates @marsidev/react-turnstile from 1.5.4 to 1.5.5

Release notes

Sourced from @​marsidev/react-turnstile's releases.

@​marsidev/react-turnstile@​1.5.5

   🐞 Bug Fixes

    View changes on GitHub
Commits
  • 4ce2451 chore: version packages (#247)
  • 50ce83e refactor: derive execute-mode container style from a single rule (#246)
  • 6d25968 fix: show widget after calling execute() in execute mode (#245)
  • ee55051 chore: bump postcss from 8.5.22 to 8.5.23 (#242)
  • 1feea9e chore: bump typescript from 6.0.3 to 7.0.2 (#222)
  • c97de7c chore: bump @​tanstack/intent from 0.3.5 to 0.3.6 (#224)
  • 20bc41f chore: bump oxlint-tsgolint from 0.24.0 to 0.25.0 (#223)
  • 65f2db4 chore: bump tsdown from 0.22.2 to 0.22.14 (#221)
  • 54cdd01 chore: bump oxfmt from 0.57.0 to 0.61.0 (#220)
  • c6758fd Update Star History section (#240)
  • Additional commits viewable in compare view

Updates @octokit/auth-app from 8.2.0 to 8.3.0

Release notes

Sourced from @​octokit/auth-app's releases.

v8.3.0

8.3.0 (2026-08-02)

Features

  • deps: allow bigint (int64) repository IDs and update dependency @​octokit/types to v17 (#759) (3df5506)
Commits
  • 3df5506 feat(deps): allow bigint (int64) repository IDs and update dependency @​octoki...
  • 9d2ec47 ci(action): update actions/checkout action to v7 (#754)
  • d149272 build(deps): lock file maintenance (#758)
  • 653732f build(deps): lock file maintenance (#753)
  • b898bcf chore(deps): update dependency esbuild to ^0.28.0 [security] (#751)
  • 9e34287 build(deps): lock file maintenance (#743)
  • fdf6833 chore(deps): update dependency prettier to v3.8.1 (#735)
  • 50cd126 chore(deps): update dependency fetch-mock to v12 (#649)
  • 2b515eb chore(deps): update dependency typescript to v6 (#741)
  • 110df40 chore(deps): update vitest monorepo to v4 (major) (#729)
  • Additional commits viewable in compare view

Updates @types/node from 26.1.2 to 26.2.0

Commits

Updates @typescript-eslint/parser from 8.65.0 to 8.67.0

Release notes

Sourced from @​typescript-eslint/parser's releases.

v8.67.0

8.67.0 (2026-08-10)

🚀 Features

  • typescript-eslint: export basic globs for using tseslint (#12105)

❤️ Thank You

See GitHub Releases for more information.

You can read about our versioning strategy and

Bumps the non-major group with 26 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@astrojs/cloudflare](https://github.com/withastro/astro/tree/HEAD/packages/integrations/cloudflare) | `14.1.7` | `14.2.0` |
| [@astrojs/markdown-remark](https://github.com/withastro/astro/tree/HEAD/packages/markdown/remark) | `7.2.1` | `7.2.2` |
| [@astrojs/markdown-satteri](https://github.com/withastro/astro/tree/HEAD/packages/markdown/satteri) | `0.3.4` | `0.3.5` |
| [@astrojs/mdx](https://github.com/withastro/astro/tree/HEAD/packages/integrations/mdx) | `7.0.4` | `7.0.5` |
| [@astrojs/react](https://github.com/withastro/astro/tree/HEAD/packages/integrations/react) | `6.0.1` | `6.0.2` |
| [@base-ui/react](https://github.com/mui/base-ui/tree/HEAD/packages/react) | `1.6.0` | `1.7.0` |
| [@cloudflare/vitest-pool-workers](https://github.com/cloudflare/workers-sdk/tree/HEAD/packages/vitest-pool-workers) | `0.18.8` | `0.21.0` |
| [@cloudflare/workers-types](https://github.com/cloudflare/workerd) | `5.20260727.1` | `5.20260810.1` |
| [@iconify-json/simple-icons](https://github.com/iconify/icon-sets) | `1.2.92` | `1.2.93` |
| [@iconify-json/vscode-icons](https://github.com/iconify/icon-sets) | `1.2.67` | `1.2.70` |
| [@marsidev/react-turnstile](https://github.com/marsidev/react-turnstile) | `1.5.4` | `1.5.5` |
| [@octokit/auth-app](https://github.com/octokit/auth-app.js) | `8.2.0` | `8.3.0` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `26.1.2` | `26.2.0` |
| [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) | `8.65.0` | `8.67.0` |
| [cidr-tools](https://github.com/silverwind/cidr-tools) | `12.1.2` | `12.1.3` |
| [globals](https://github.com/sindresorhus/globals) | `17.8.0` | `17.9.0` |
| [happy-dom](https://github.com/capricorn86/happy-dom) | `20.11.1` | `20.11.2` |
| [lint-staged](https://github.com/lint-staged/lint-staged) | `17.2.0` | `17.3.0` |
| [marked](https://github.com/markedjs/marked) | `18.0.7` | `18.0.9` |
| [mermaid](https://github.com/mermaid-js/mermaid) | `11.16.0` | `11.16.1` |
| [nanostores](https://github.com/nanostores/nanostores) | `1.4.1` | `1.4.2` |
| [node-html-parser](https://github.com/taoqf/node-fast-html-parser) | `9.0.0` | `9.0.1` |
| [tsx](https://github.com/privatenumber/tsx) | `4.23.1` | `4.23.12` |
| [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint) | `8.65.0` | `8.67.0` |
| [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `8.1.5` | `8.2.1` |
| [wrangler](https://github.com/cloudflare/workers-sdk/tree/HEAD/packages/wrangler) | `4.114.0` | `4.120.1` |



Updates `@astrojs/cloudflare` from 14.1.7 to 14.2.0
- [Release notes](https://github.com/withastro/astro/releases)
- [Changelog](https://github.com/withastro/astro/blob/main/packages/integrations/cloudflare/CHANGELOG.md)
- [Commits](https://github.com/withastro/astro/commits/@astrojs/cloudflare@14.2.0/packages/integrations/cloudflare)

Updates `@astrojs/markdown-remark` from 7.2.1 to 7.2.2
- [Release notes](https://github.com/withastro/astro/releases)
- [Changelog](https://github.com/withastro/astro/blob/main/packages/markdown/remark/CHANGELOG.md)
- [Commits](https://github.com/withastro/astro/commits/@astrojs/markdown-remark@7.2.2/packages/markdown/remark)

Updates `@astrojs/markdown-satteri` from 0.3.4 to 0.3.5
- [Release notes](https://github.com/withastro/astro/releases)
- [Changelog](https://github.com/withastro/astro/blob/main/packages/markdown/satteri/CHANGELOG.md)
- [Commits](https://github.com/withastro/astro/commits/@astrojs/markdown-satteri@0.3.5/packages/markdown/satteri)

Updates `@astrojs/mdx` from 7.0.4 to 7.0.5
- [Release notes](https://github.com/withastro/astro/releases)
- [Changelog](https://github.com/withastro/astro/blob/main/packages/integrations/mdx/CHANGELOG.md)
- [Commits](https://github.com/withastro/astro/commits/@astrojs/mdx@7.0.5/packages/integrations/mdx)

Updates `@astrojs/react` from 6.0.1 to 6.0.2
- [Release notes](https://github.com/withastro/astro/releases)
- [Changelog](https://github.com/withastro/astro/blob/main/packages/integrations/react/CHANGELOG.md)
- [Commits](https://github.com/withastro/astro/commits/@astrojs/react@6.0.2/packages/integrations/react)

Updates `@base-ui/react` from 1.6.0 to 1.7.0
- [Release notes](https://github.com/mui/base-ui/releases)
- [Changelog](https://github.com/mui/base-ui/blob/master/CHANGELOG.md)
- [Commits](https://github.com/mui/base-ui/commits/v1.7.0/packages/react)

Updates `@cloudflare/vitest-pool-workers` from 0.18.8 to 0.21.0
- [Release notes](https://github.com/cloudflare/workers-sdk/releases)
- [Changelog](https://github.com/cloudflare/workers-sdk/blob/main/packages/vitest-pool-workers/CHANGELOG.md)
- [Commits](https://github.com/cloudflare/workers-sdk/commits/@cloudflare/vitest-pool-workers@0.21.0/packages/vitest-pool-workers)

Updates `@cloudflare/workers-types` from 5.20260727.1 to 5.20260810.1
- [Release notes](https://github.com/cloudflare/workerd/releases)
- [Changelog](https://github.com/cloudflare/workerd/blob/main/RELEASE.md)
- [Commits](https://github.com/cloudflare/workerd/commits)

Updates `@iconify-json/simple-icons` from 1.2.92 to 1.2.93
- [Commits](https://github.com/iconify/icon-sets/commits)

Updates `@iconify-json/vscode-icons` from 1.2.67 to 1.2.70
- [Commits](https://github.com/iconify/icon-sets/commits)

Updates `@marsidev/react-turnstile` from 1.5.4 to 1.5.5
- [Release notes](https://github.com/marsidev/react-turnstile/releases)
- [Commits](https://github.com/marsidev/react-turnstile/compare/@marsidev/react-turnstile@1.5.4...@marsidev/react-turnstile@1.5.5)

Updates `@octokit/auth-app` from 8.2.0 to 8.3.0
- [Release notes](https://github.com/octokit/auth-app.js/releases)
- [Commits](octokit/auth-app.js@v8.2.0...v8.3.0)

Updates `@types/node` from 26.1.2 to 26.2.0
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

Updates `@typescript-eslint/parser` from 8.65.0 to 8.67.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.67.0/packages/parser)

Updates `cidr-tools` from 12.1.2 to 12.1.3
- [Release notes](https://github.com/silverwind/cidr-tools/releases)
- [Commits](silverwind/cidr-tools@12.1.2...12.1.3)

Updates `globals` from 17.8.0 to 17.9.0
- [Release notes](https://github.com/sindresorhus/globals/releases)
- [Commits](sindresorhus/globals@v17.8.0...v17.9.0)

Updates `happy-dom` from 20.11.1 to 20.11.2
- [Release notes](https://github.com/capricorn86/happy-dom/releases)
- [Commits](capricorn86/happy-dom@v20.11.1...v20.11.2)

Updates `lint-staged` from 17.2.0 to 17.3.0
- [Release notes](https://github.com/lint-staged/lint-staged/releases)
- [Changelog](https://github.com/lint-staged/lint-staged/blob/main/CHANGELOG.md)
- [Commits](lint-staged/lint-staged@v17.2.0...v17.3.0)

Updates `marked` from 18.0.7 to 18.0.9
- [Release notes](https://github.com/markedjs/marked/releases)
- [Commits](markedjs/marked@v18.0.7...v18.0.9)

Updates `mermaid` from 11.16.0 to 11.16.1
- [Release notes](https://github.com/mermaid-js/mermaid/releases)
- [Commits](https://github.com/mermaid-js/mermaid/compare/mermaid@11.16.0...mermaid@11.16.1)

Updates `nanostores` from 1.4.1 to 1.4.2
- [Release notes](https://github.com/nanostores/nanostores/releases)
- [Changelog](https://github.com/nanostores/nanostores/blob/main/CHANGELOG.md)
- [Commits](nanostores/nanostores@1.4.1...1.4.2)

Updates `node-html-parser` from 9.0.0 to 9.0.1
- [Release notes](https://github.com/taoqf/node-fast-html-parser/releases)
- [Changelog](https://github.com/taoqf/node-html-parser/blob/main/CHANGELOG.md)
- [Commits](taoqf/node-html-parser@v9.0.0...v9.0.1)

Updates `tsx` from 4.23.1 to 4.23.12
- [Release notes](https://github.com/privatenumber/tsx/releases)
- [Changelog](https://github.com/privatenumber/tsx/blob/master/release.config.cjs)
- [Commits](privatenumber/tsx@v4.23.1...v4.23.12)

Updates `typescript-eslint` from 8.65.0 to 8.67.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.67.0/packages/typescript-eslint)

Updates `vite` from 8.1.5 to 8.2.1
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v8.2.1/packages/vite)

Updates `wrangler` from 4.114.0 to 4.120.1
- [Release notes](https://github.com/cloudflare/workers-sdk/releases)
- [Commits](https://github.com/cloudflare/workers-sdk/commits/wrangler@4.120.1/packages/wrangler)

---
updated-dependencies:
- dependency-name: "@astrojs/cloudflare"
  dependency-version: 14.2.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: non-major
- dependency-name: "@astrojs/markdown-remark"
  dependency-version: 7.2.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: non-major
- dependency-name: "@astrojs/markdown-satteri"
  dependency-version: 0.3.5
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: non-major
- dependency-name: "@astrojs/mdx"
  dependency-version: 7.0.5
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: non-major
- dependency-name: "@astrojs/react"
  dependency-version: 6.0.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: non-major
- dependency-name: "@base-ui/react"
  dependency-version: 1.7.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: non-major
- dependency-name: "@cloudflare/vitest-pool-workers"
  dependency-version: 0.21.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: non-major
- dependency-name: "@cloudflare/workers-types"
  dependency-version: 5.20260810.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: non-major
- dependency-name: "@iconify-json/simple-icons"
  dependency-version: 1.2.93
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: non-major
- dependency-name: "@iconify-json/vscode-icons"
  dependency-version: 1.2.70
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: non-major
- dependency-name: "@marsidev/react-turnstile"
  dependency-version: 1.5.5
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: non-major
- dependency-name: "@octokit/auth-app"
  dependency-version: 8.3.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: non-major
- dependency-name: "@types/node"
  dependency-version: 26.2.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: non-major
- dependency-name: "@typescript-eslint/parser"
  dependency-version: 8.67.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: non-major
- dependency-name: cidr-tools
  dependency-version: 12.1.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: non-major
- dependency-name: globals
  dependency-version: 17.9.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: non-major
- dependency-name: happy-dom
  dependency-version: 20.11.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: non-major
- dependency-name: lint-staged
  dependency-version: 17.3.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: non-major
- dependency-name: marked
  dependency-version: 18.0.9
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: non-major
- dependency-name: mermaid
  dependency-version: 11.16.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: non-major
- dependency-name: nanostores
  dependency-version: 1.4.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: non-major
- dependency-name: node-html-parser
  dependency-version: 9.0.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: non-major
- dependency-name: tsx
  dependency-version: 4.23.12
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: non-major
- dependency-name: typescript-eslint
  dependency-version: 8.67.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: non-major
- dependency-name: vite
  dependency-version: 8.2.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: non-major
- dependency-name: wrangler
  dependency-version: 4.120.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: non-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot
dependabot Bot requested review from a team as code owners August 11, 2026 21:22
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Aug 11, 2026
@cloudflare-docs-bot

cloudflare-docs-bot Bot commented Aug 11, 2026

Copy link
Copy Markdown
Contributor

Dependabot review

Package Impact Recommendation
@astrojs/cloudflare 14.1.7 → 14.2.0 🟠 Medium ⚠️ Verify
@astrojs/markdown-remark 7.2.1 → 7.2.2 🟡 Low ✅ Merge
@astrojs/markdown-satteri 0.3.4 → 0.3.5 🟡 Low ✅ Merge
@astrojs/mdx 7.0.4 → 7.0.5 🟡 Low ✅ Merge
@astrojs/react 6.0.1 → 6.0.2 🟡 Low ✅ Merge
@base-ui/react 1.6.0 → 1.7.0 🟠 Medium ⚠️ Verify
@cloudflare/vitest-pool-workers 0.18.8 → 0.21.0 🟡 Low ✅ Merge
@cloudflare/workers-types 5.20260727.1 → 5.20260810.1 🟡 Low ✅ Merge
@iconify-json/simple-icons 1.2.92 → 1.2.93 🟢 Very Low ✅ Merge
@iconify-json/vscode-icons 1.2.67 → 1.2.70 🟢 Very Low ✅ Merge
@marsidev/react-turnstile 1.5.4 → 1.5.5 🟡 Low ✅ Merge
@octokit/auth-app 8.2.0 → 8.3.0 🟢 Very Low ✅ Merge
@types/node 26.1.2 → 26.2.0 🟢 Very Low ✅ Merge
@typescript-eslint/parser 8.65.0 → 8.67.0 🟢 Very Low ✅ Merge
cidr-tools 12.1.2 → 12.1.3 🟡 Low ✅ Merge
globals 17.8.0 → 17.9.0 🟢 Very Low ✅ Merge
happy-dom 20.11.1 → 20.11.2 🟡 Low ✅ Merge
lint-staged 17.2.0 → 17.3.0 🟢 Very Low ✅ Merge
marked 18.0.7 → 18.0.9 🟠 Medium ⚠️ Verify
mermaid 11.16.0 → 11.16.1 🟠 Medium ⚠️ Verify
nanostores 1.4.1 → 1.4.2 ⬜ None ✅ Merge
node-html-parser 9.0.0 → 9.0.1 🟡 Low ✅ Merge
tsx 4.23.1 → 4.23.12 🟢 Very Low ✅ Merge
typescript-eslint 8.65.0 → 8.67.0 🟢 Very Low ✅ Merge
vite 8.1.5 → 8.2.1 🟡 Low ✅ Merge
wrangler 4.114.0 → 4.120.1 🟠 Medium ⚠️ Verify

Overall: ✅ Merge + spot-check

Most bumps are non-major patch/minor updates to dependencies that are either internal to the build/test pipeline or used with unchanged public APIs. The few visitor-facing areas are the Astro Cloudflare adapter image pipeline, Base UI Select/Combobox components, marked-based inline markdown fragments, client-side Mermaid diagrams, and the Wrangler command registry that powers generated wrangler reference pages. No upstream breaking changes affect current repo config (custom image service, miniflare overrides, etc. are not used). Recommended next step is to run pnpm install, pnpm check, pnpm test, and pnpm build in a local/CI environment, plus a quick visual spot-check of a model-page dropdown, a WranglerCommand page, a Mermaid diagram page, and the feedback widget to confirm no regressions.

Package details

@astrojs/cloudflare: 14.1.7 → 14.2.0

Type: feature
Dependency type: direct

What changed

  • Adds opt-in build-time image optimization for cloudflare-binding image service.
  • Supports experimental.incrementalBuild for skipping unchanged pages.
  • Fixes /_image 500 in dev for imageService 'custom' and immutable-header crash on cache hits.
  • Fixes imageService 'compile' unoptimized images with prerenderEnvironment 'node'.
  • Type-only fix for @astrojs/cloudflare/hono app.use(cf()).

Usage in this repo
Used as the production build adapter/image service (image.service.entrypoint: '@astrojs/cloudflare/image-service' in astro.config.ts).

Impact: 🟠 Medium — The adapter controls the production build and image pipeline; while changes are opt-in, fixes in the image endpoint path could affect rendered output or dev behavior.


@astrojs/markdown-remark: 7.2.1 → 7.2.2

Type: dependency bump
Dependency type: direct

What changed

  • Updated dependency @astrojs/internal-helpers to 0.10.2 only.

Usage in this repo
Pinned direct dependency; not imported directly — consumed by @astrojs/mdx and the Nimbus MDX pipeline.

Impact: 🟡 Low — Only an internal helper bump and the package is not called directly in this repo, but it sits in the MDX rendering path.


@astrojs/markdown-satteri: 0.3.4 → 0.3.5

Type: dependency bump
Dependency type: direct

What changed

  • Updated dependency @astrojs/internal-helpers to 0.10.2 only.

Usage in this repo
Imported in astro.config.ts and passed to the Nimbus markdown processor as satteri({...}).

Impact: 🟡 Low — Drives Markdown → hast processing; change is just a dependency bump, so no API or behavior change is expected.


@astrojs/mdx: 7.0.4 → 7.0.5

Type: dependency bump
Dependency type: direct

What changed

  • Updated dependencies @astrojs/internal-helpers to 0.10.2 and @astrojs/markdown-remark to 7.2.2.

Usage in this repo
Imported as a server renderer in src/util/container.ts and src/util/rendered-toc.ts; also used by Nimbus MDX integration.

Impact: 🟡 Low — Used for server-side MDX rendering; no own code changes outside dependency bumps.


@astrojs/react: 6.0.1 → 6.0.2

Type: dependency bump
Dependency type: direct

What changed

  • Updated dependency @astrojs/internal-helpers to 0.10.2 only.

Usage in this repo
Astro integration registered in astro.config.ts; server renderer imported in src/util/container.ts and src/util/rendered-toc.ts.

Impact: 🟡 Low — Only an internal helper bump; React island/server rendering path is exercised but unchanged.


@base-ui/react: 1.6.0 → 1.7.0

Type: feature
Dependency type: direct

What changed

  • Popup positioning and lifecycle fixes (collisionPadding, auto-resize origin, lazy flipping, etc.).
  • Select/Combobox/Autocomplete changes: locale filtering, input-press/cancel-open event details, listbox separator semantics.
  • Accordion no longer adds implicit dir; AlertDialog remount behavior fixed.
  • Render callback prop types are now based on rendered element.

Usage in this repo
Used in src/components/models/SortSelect.tsx (Select) and src/components/models/FilterDropdown.tsx (Combobox).

Impact: 🟠 Medium — These interactive UI components are rendered on visitor-facing model pages; new behavior around focus, filtering, and popup positioning could change UX.


@cloudflare/vitest-pool-workers: 0.18.8 → 0.21.0

Type: feature
Dependency type: direct

What changed

  • 0.21.0: migrates Miniflare options to config-based workers shape.
  • 0.20.0: removes several miniflare override options (wrappedBindings, cacheWarnUsage, fetchMock, containerEngine).
  • Dependency updates for wrangler and miniflare.

Usage in this repo
Imported in vitest.config.ts as cloudflareTest() for the Workers and Workers (Preview) test projects.

Impact: 🟡 Low — Test-only dependency; the removed miniflare overrides are not used here (config only sets wrangler.configPath). Verify tests still pass.


@cloudflare/workers-types: 5.20260727.1 → 5.20260810.1

Type: dependency bump
Dependency type: direct

What changed

  • Latest runtime type definitions from workerd.

Usage in this repo
Listed in worker/tsconfig.json types; used for Worker check:worker type-checking.

Impact: 🟡 Low — Type-only update; could surface new type-check errors during pnpm check:worker but does not change runtime behavior.


@iconify-json/simple-icons: 1.2.92 → 1.2.93

Type: dependency bump
Dependency type: direct

What changed

  • Icon set data refresh.

Usage in this repo
Icon set data referenced by the icon alias plugin in astro.config.ts and consumed by the Nimbus icon component.

Impact: 🟢 Very Low — Changes only icon glyphs/data; no code API changes and no direct JS imports in this repo.


@iconify-json/vscode-icons: 1.2.67 → 1.2.70

Type: dependency bump
Dependency type: direct

What changed

  • Icon set data refresh.

Usage in this repo
Icon set data referenced by the icon alias plugin in astro.config.ts and consumed by the Nimbus icon component.

Impact: 🟢 Very Low — Changes only icon glyphs/data; no code API changes and no direct JS imports in this repo.


@marsidev/react-turnstile: 1.5.4 → 1.5.5

Type: bug fix
Dependency type: direct

What changed

  • Fixes widget not showing after calling execute() in execute mode.

Usage in this repo
Imported in src/components/react/FeedbackPrompt.tsx as the Turnstile component.

Impact: 🟡 Low — Affects the feedback widget on posts; the fix is narrow and should only improve behavior.


@octokit/auth-app: 8.2.0 → 8.3.0

Type: feature
Dependency type: direct

What changed

  • Allows bigint (int64) repository IDs.
  • Updates @octokit/types dependency.

Usage in this repo
Imported in .flue/lib/github.ts for GitHub App authentication (createAppAuth).

Impact: 🟢 Very Low — Used by internal tooling in the .flue workspace; no impact on public site output.


@types/node: 26.1.2 → 26.2.0

Type: dependency bump
Dependency type: direct

What changed

  • Node.js type definitions refresh.

Usage in this repo
Type-only devDependency used by the TypeScript compiler.

Impact: 🟢 Very Low — Type-only package; unlikely to introduce type-check failures in this repo.


@typescript-eslint/parser: 8.65.0 → 8.67.0

Type: dependency bump
Dependency type: direct

What changed

  • Parser refresh as part of the typescript-eslint 8.67.0 release.

Usage in this repo
Consumed by typescript-eslint and used by the ESLint config in eslint.config.js.

Impact: 🟢 Very Low — Lint-only dependency; no runtime or public output impact.


cidr-tools: 12.1.2 → 12.1.3

Type: bug fix
Dependency type: direct

What changed

  • Patch release for CIDR utilities.

Usage in this repo
Imported in src/components/react/SubtractIPCalculator.tsx (excludeCidr, parseCidr).

Impact: 🟡 Low — Used by a single interactive calculator component; patch release is low risk.


globals: 17.8.0 → 17.9.0

Type: dependency bump
Dependency type: direct

What changed

  • Global identifiers list refresh.

Usage in this repo
Imported in eslint.config.js and spread into ESLint globals.node.

Impact: 🟢 Very Low — Lint-only globals list; no runtime or content impact.


happy-dom: 20.11.1 → 20.11.2

Type: bug fix
Dependency type: direct

What changed

  • Patch release for the browser-less DOM implementation.

Usage in this repo
Configured as the Vitest Node project environment in vitest.config.ts.

Impact: 🟡 Low — Only used during *.node.test.ts runs; verify Node test suite still passes.


lint-staged: 17.2.0 → 17.3.0

Type: dependency bump
Dependency type: direct

What changed

  • Minor tooling refresh for running linters on git staged files.

Usage in this repo
No direct imports; invoked by the husky pre-commit hook per package.json lint-staged config.

Impact: 🟢 Very Low — Git hook tooling; not used in build, tests, or rendered output.


marked: 18.0.7 → 18.0.9

Type: bug fix
Dependency type: direct

What changed

  • Patch release for the markdown parser.

Usage in this repo
Used across the site for inline markdown rendering, e.g. src/util/changelog.ts, src/pages/[...changelog].xml.ts, and many src/components/cf/*.astro components.

Impact: 🟠 Medium — Bug fixes to the parser could change the HTML emitted by many Astro components that render descriptions/changelog/command text.


mermaid: 11.16.0 → 11.16.1

Type: bug fix
Dependency type: direct

What changed

  • Patch release for the Mermaid diagram renderer.

Usage in this repo
Dynamically imported in src/scripts/mermaid.client.ts; also transformed server-side by src/plugins/satteri/mermaid.ts.

Impact: 🟠 Medium — Client-side diagram rendering on many docs pages could be affected by renderer fixes/changes.


nanostores: 1.4.1 → 1.4.2

Type: dependency bump
Dependency type: direct

What changed

  • Patch release for the atomic store library.

Usage in this repo
Not directly imported in this repo; present as a peer/transitive dep for @nanostores/react, which is also not currently used in source.

Impact: ⬜ None — No callsites; does not affect build, tests, or rendered output for this repo.


node-html-parser: 9.0.0 → 9.0.1

Type: bug fix
Dependency type: direct

What changed

  • Patch release for the HTML parser.

Usage in this repo
Imported in src/util/description.ts, src/components/cf/WranglerConfig.astro, src/components/cf/TypeScriptExample.astro, and worker/*.test.ts files.

Impact: 🟡 Low — Used for parsing/descriptions at build time and in tests; patch changes are unlikely to break current usage.


tsx: 4.23.1 → 4.23.12

Type: bug fix
Dependency type: direct

What changed

  • Patch release for the TypeScript/ESM runner.

Usage in this repo
Used via package.json scripts (prebuild, predev) and in bin script shebangs (#!/usr/bin/env tsx).

Impact: 🟢 Very Low — CLI/bootstrap tool only; verify prebuild scripts still run.


typescript-eslint: 8.65.0 → 8.67.0

Type: feature
Dependency type: direct

What changed

  • typescript-eslint now exports basic globs for using tseslint.
  • Bug fixes and parser updates.

Usage in this repo
Imported in eslint.config.js as pluginTypeScript from typescript-eslint.

Impact: 🟢 Very Low — Lint-only plugin; new export is unused here. Run pnpm lint to confirm no new errors.


vite: 8.1.5 → 8.2.1

Type: feature
Dependency type: direct

What changed

  • Vite 8.2.x minor release (rolldown-related improvements and build fixes).

Usage in this repo
Used by Astro/Nimbus build pipeline; referenced in .flue scripts (flue:dev, flue:build).

Impact: 🟡 Low — Build/dev tooling; changes could affect bundle output but are non-major and expected to be compatible with Astro 7.


wrangler: 4.114.0 → 4.120.1

Type: feature
Dependency type: direct

What changed

  • Wrangler minor version bump with command/config additions and fixes.
  • Type generation for workers and registry metadata updates.

Usage in this repo
Used in package.json scripts (typegen:worker, flue:*) and in src/components/cf/WranglerCommand.astro via experimental_getWranglerCommands().

Impact: 🟠 Medium — WranglerCommand.astro builds visitor-facing wrangler reference content from Wrangler's command registry; metadata shape changes could affect generated pages.


@github-actions

Copy link
Copy Markdown
Contributor

This pull request requires reviews from CODEOWNERS as it changes files that match the following patterns:

Pattern Owners
package.json @cloudflare/content-engineering
* @cloudflare/product-owners

@github-actions

Copy link
Copy Markdown
Contributor

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code size/xl

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants